2017-10-13 shell 练习-判断用户是否登录中 shell练习 编写一个名为ifuser的程序,它执行时带用户名作为命令行参数,判断该用户是否已经在系统中登录,并给出相关信息。 编写一个名为menu的程序,实现简单的弹出式菜单功能,用户能根据显示的菜单项从键盘选择执行对应的命令。 12345678#!/bin/bashread -p "Please input the username: " userif who | grep -qw $userthen echo $user is online.else echo $user not online.fi 或者 1234567891011121314151617181920212223242526#!/bin/bashfunction message(){ echo "0. w" echo "1. ls" echo "2.quit" read -p "Please input parameter: " Par}messagewhile [ $Par -ne '2' ] ; do case $Par in 0) w ;; 1) ls ;; 2) exit ;; *) echo "Unkown command" ;; esac messagedone < shell 练习-更改后缀名 shell 练习-判断某个文件是否存在 >